home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000240_news@columbia.edu _Fri Jan 5 10:47:28 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id KAA16479 for <kermit.misc@watsun>; Fri, 5 Jan 1996 10:47:27 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id KAA21446 for kermit.misc@watsun; Fri, 5 Jan 1996 10:47:23 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: ISDN?
  8. Date: 5 Jan 1996 15:47:20 GMT
  9. Organization: Columbia University
  10. Lines: 48
  11. Message-ID: <4cjh68$ku4@apakabar.cc.columbia.edu>
  12. References: <30EB0A80.B86@mitre.org>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <30EB0A80.B86@mitre.org>, Jeff Heim  <jheim@mitre.org> wrote:
  16.  
  17. : This may be a really dumb question, it's definitely naive.  But does
  18. : Kermit work with ISDN and is it something that one would want to do?
  19. : I'm currently using Kermit and some 28.8 modems.  The files that I'm
  20. : transferring may get a lot bigger and I need to come up with some
  21. : alternatives.  I haven't seen any discussion of ISDN in the faq, the
  22. : book, or this newsgroup.
  23. You will always get more informative answers to questions like this if you
  24. state which Kermit program you are talking about, on which type of
  25. computer and operating system.
  26.  
  27. As other posters pointed out, ISDN is often a lower layer to other
  28. protocols, such as TCP/IP, in which case applications designed for the
  29. higher protocols should work transparently.  In other cases, ISDN drivers
  30. make the ISDN connection mimic some familiar type of serial device, 
  31. like a Hayes modem.
  32.  
  33. Here is some specific information about using MS-DOS Kermit with ISDN,
  34. reproduced from section 2.2 of the KERMIT.UPD file:
  35.  
  36. Integrated Services Digital Network (ISDN) boards serve ISDN digital
  37. telephones, which provide (among other things) 64Kbps data transmission.
  38. ISDN boards are not serial boards, and therefore require special drivers.
  39. There is a Common Application Programming Interface (CAPI) for ISDN
  40. boards, defined by German Telecom and German ISDN manufacturers.  CAPI
  41. drivers are supplied by ISDN board manufacturers.  MS-DOS Kermit 3.14 does
  42. not support CAPI directly, but shims exist that allow Kermit to be used
  43. with ISDN anyway, by disguising CAPI as the Fossil, Int 14, or Packet
  44. Driver interface, all of which are supported by Kermit.  Examples:
  45.  
  46.  . cFos is a shareware fossil driver for CAPI, written by Martin Winkler &
  47.    Christoph Lueders of Bonn, Germany.  It is available via anonymous ftp
  48.    from ftp.dfv.rwth-aachen.de:/pub/network/isdn/cfos, or by dialup to the
  49.    Zaphods BBS in Bonn: +49 228 9111041.  It supports both the Fossil and
  50.    Int 14 interfaces, and presents ISDN controls in the form of Hayes-like
  51.    AT commands.
  52.  
  53.  . PAPI is free software, GNU Public License, providing a SLIP-class
  54.    packet driver interface to a CAPI driver, written by Dietmar Friede,
  55.    Friede Consulting, Munich (Muenchen), German <capi@friede.de>.
  56.    Available via ftpmail to ftp.germany.eu.net (send email to
  57.    archive-server@germany.eu.net containing the word "help"), or by ftp
  58.    directly from ftp.dfv.rwth-aachen.de.
  59.  
  60. - Frank